Conversation
|
🧪 Testing To try out this version of the SDK: Expires at: Wed, 29 Apr 2026 18:02:21 GMT |
ab8652e to
13a8c98
Compare
Note that we still want to run tests, as these depend on the metadata.
13a8c98 to
26afb46
Compare
26afb46 to
e2ed144
Compare
e2ed144 to
7eb1834
Compare
7eb1834 to
92fed74
Compare
92fed74 to
a3a0e2b
Compare
a3a0e2b to
9a92786
Compare
9a92786 to
006ddd6
Compare
006ddd6 to
4bdbc19
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
| u = parsed.String() | ||
| } else { | ||
| u = u + "?" + params | ||
| } |
There was a problem hiding this comment.
Ignored url.Parse error risks nil pointer dereference
Low Severity
The error from url.Parse(u) is discarded with parsed, _ := url.Parse(u). In Go's standard library, url.Parse returns nil for the *URL when it fails. If u contains control characters or invalid percent-encoding (e.g., %GG), parsed will be nil and the subsequent parsed.RawQuery access will panic with a nil pointer dereference.
4bdbc19 to
625e56e
Compare
625e56e to
ee42d89
Compare
ee42d89 to
8154c25
Compare
|
🤖 Release is at https://github.com/kernel/kernel-go-sdk/releases/tag/v0.45.0 🌻 |


Automated Release PR
0.45.0 (2026-03-30)
Full Changelog: v0.44.0...v0.45.0
Features
Bug Fixes
Chores
This pull request is managed by Stainless's GitHub App.
The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.
For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions
Note
Medium Risk
Medium risk because it changes core request/response serialization (new
defaultstruct-tag behavior and multipart array encoding) and URL query construction, which can subtly affect many endpoints’ wire formats.Overview
Bumps the SDK to
0.45.0(manifest, internal version, README pin, changelog) and updates OpenAPI spec metadata.Adds new client capabilities for browsers:
BrowserUpdateParams.DisableDefaultProxyfor stealth sessions, andchrome_policysupport on browser pools (new/update params plus response field metadata).Enhances internal serialization: multipart form encoding now supports comma-formatted arrays and a new string-only
default:"..."struct tag that backfills zero values during JSON/multipart encoding (used to set constant discriminator/region/event fields). Also fixes query param appending inrequestconfigto avoid producing duplicate?when the base URL already contains a query string.CI build job is skipped for
codegen metadata-only push commits, and.stdy.logis added to.gitignore.Written by Cursor Bugbot for commit 8154c25. This will update automatically on new commits. Configure here.